home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snip9611.zip / ERRORS.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  415b  |  17 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. /*
  4. **  Header file for SNIPPETS error handlers
  5. */
  6.  
  7. #ifndef ERRORS__H
  8. #define ERRORS__H
  9.  
  10. #include <stdio.h>
  11.  
  12. int  ferrorf(FILE *filehandle, const char *format, ...); /* Ferrorf.C   */
  13. FILE * cant(char *fname, char *fmode);                   /* Ferrorf.C   */
  14. void ErrExit(char *fmt, ...);                            /* Err_Exit.C  */
  15.  
  16. #endif /* ERRORS__H */
  17.